//--------------------------------------------------- // Purpose: This program prints "Hello Mom" // Author: John Gauch //--------------------------------------------------- #include using namespace std; // Main function int main() { // Sample code cout << "Hello Mom\n"; return 0; }